home *** CD-ROM | disk | FTP | other *** search
/ Haight-Ashbury in the Sixties / Haight-Ashbury in the Sixties (1996)(Rockument)(Disc 1 of 2)[Mac-PC].iso / mac / MAIN / TUNEIN / TUNEIN01.DIR / 00192_Script_192 < prev    next >
Text File  |  1995-06-01  |  2KB  |  45 lines

  1. on mouseDown
  2.   set thisLine = the mouseLine
  3.   if thisLine = -1 then
  4.     exit
  5.   end if
  6.   if line thisLine of field "credits/disc"  = "   Jim Collins, Smoke & Mirrors [image]" then
  7.     hilite line thisLine of field "credits/disc"
  8.     puppetSound "add a movie"
  9.     set the puppet of sprite 36 = true
  10.     set the visibility of sprite 36 = true
  11.     set the castnum of sprite 36 = the number of cast "S&M"
  12.     updatestage
  13.   end if
  14.   if line thisLine of field "credits/disc"  = "   Mark OÆHara [image], David Jacobs, and Amy Shelton" then
  15.     hilite line thisLine of field "credits/disc"
  16.     puppetSound "add a movie"
  17.     set the puppet of sprite 36 = true
  18.     set the visibility of sprite 36 = true
  19.     set the castnum of sprite 36 = the number of cast "skiptronics"
  20.     updatestage
  21.   end if
  22.   if line thisLine of field "credits/disc"  = "Made with MacroMedia [image]" then
  23.     --hilite line thisLine of field "credits/disc"
  24.     puppetSound "add a movie"
  25.     set the puppet of sprite 36 = true
  26.     set the visibility of sprite 36 = true
  27.     set the castnum of sprite 36 = the number of cast "MWM"
  28.     updatestage
  29.   end if
  30.   if line thisLine of field "credits/disc"  = "This CD-ROM uses QuickTimeÖ [image]" then
  31.     --hilite line thisLine of field "credits/disc"
  32.     puppetSound "add a movie"
  33.     set the puppet of sprite 36 = true
  34.     set the visibility of sprite 36 = true
  35.     set the castnum of sprite 36 = the number of cast "QuickTime"
  36.     updatestage
  37.   end if
  38. end
  39.  
  40. on mouseUp
  41.   set the puppet of sprite 36 = false
  42.   set the visibility of sprite 36 = false
  43.   updatestage
  44. end
  45.